func encoding/asn1.appendTwoDigits

10 uses

	encoding/asn1 (current package)
		marshal.go#L353: func appendTwoDigits(dst []byte, v int) []byte {
		marshal.go#L398: 		dst = appendTwoDigits(dst, year-1900)
		marshal.go#L400: 		dst = appendTwoDigits(dst, year-2000)
		marshal.go#L422: 	dst = appendTwoDigits(dst, int(month))
		marshal.go#L423: 	dst = appendTwoDigits(dst, day)
		marshal.go#L427: 	dst = appendTwoDigits(dst, hour)
		marshal.go#L428: 	dst = appendTwoDigits(dst, min)
		marshal.go#L429: 	dst = appendTwoDigits(dst, sec)
		marshal.go#L447: 	dst = appendTwoDigits(dst, offsetMinutes/60)
		marshal.go#L448: 	dst = appendTwoDigits(dst, offsetMinutes%60)